body {
  margin: 0;
  background-color: #B3CAEC;
  font-family: Arial, Helvetica, sans-serif;
}

#gmd-logo {
  width: 70px;
  margin-bottom: 21px;
  margin-right: 10px;
}

.gmd-logo-wrapper {
  display: flex;
  /* Use flexbox to make the children display side by side */
  align-items: center;
  /* Center vertically within the wrapper */
}

#gmd-logo-hidden {
  display: none;
  width: 69px;
}

#navbar {
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  transition: top 0.3s;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;

  text-decoration: none;
  font-size: 17px;
}

/* #navbar a:hover {
  background-color: #ddd;
  color: black;
} */

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline;
  margin-right: 10px;
}

.gmd-header {
  background-color: #131415;
  height: 71px;
}

#gmd-cmp-name {
  font-size: 44px !important;
  font-family: Calisto MT, Bookman Old Style, Bookman, Goudy Old Style, Garamond, Hoefler Text, Bitstream Charter, Georgia, serif;
  font-weight: normal;
  margin-bottom: 16px;
  margin-left: 6px;
}

#gmd-cmp-name>span {
  color: #A6A6A6;
}

#gmd-cmp-name>span1 {
  color: #CFCFCF;
}


/* Search icon start */

.search-field {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.search-field:focus {
  width: 100%;
}

.search-field-container {
  position: relative;
  margin-bottom: 20px;
  display: block;
  float: right;
  width: 85%;
  height: 35px;
}

.search-field {
  background-color: #252627;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #252627;
  outline: none;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #919190;
}

/* Search icon end */

.gmd-fh {
  background-color: #C2D4EF;
}

.gmd-fh-font {
  color: #616174 !important;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 21px !important;
}

.gmd-fh .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #A1B5D4 !important;
}

.gmd-sh {
  background-color: #8FA1BC;
}

.gmd-sh-font {
  color: #FFFFFF !important;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px !important;
  border: 1px solid #A1B5D4 !important;
  background-color: #A1B5D4 !important;
}

.gmd-sh .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.gmd-img-resize {
  height: 150px;
}

/* Style for the outer box */
.gmd-text-box {
  width: 100%;
  height: 100px;
  background-color: #F2F2F2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.gmd-content-border {
  border-left: 2px solid #7CADDE;
  border-right: 2px solid #7CADDE;
}

.gmd-outer-box {
  width: 100%;
  height: 180px;
  background-color: #F2F2F2;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.gmd-show-more {
  float: right;
  margin: 10px;
  --bs-btn-bg: #A1B5D4 !important;
  --bs-btn-border-color: #A1B5D4 !important;
}

.gmd-content-background {
  padding-top: 200px;
  background-color: #B3CAEC;
}

/* emoji circle */

/* Style for the container holding the circles */
.circle-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.circle {
  width: 45px;
  height: 45px;
  background-color: #424242;
  /* Blue background color, you can change it */
  border-radius: 100%;
  /* Makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #7CADDE;
  margin-right: 13px;
}

/* Style for the Font Awesome user icon */
.circle i {
  color: #fff;
  /* Icon color, you can change it */
  font-size: 20px;
  /* Icon size, you can change it */
}

/* emoji circle end*/

/* Start theme change css */

/* Style for the circular container */
.circle-container-theme {
  display: flex;
  flex-direction: row;
  /* Arrange items vertically */
  align-items: center;
  border-radius: 50%;
  /* Make it circular */
  overflow: hidden;
  /* Hide any overflow content */
  width: 45px;
  /* Adjust the width as needed */
  height: 45px;
  margin-bottom: 20px;
  border: 2px solid #7CADDE;
}

/* Style for the labels */
.switch-label {
  cursor: pointer;
  flex: 1;
  /* Equal width for all labels within the circle */
  padding: 30px 7px;
  text-align: center;
  user-select: none;
  width: 100%;
}

.switch-label-night {
  background-color: #333;
}

.switch-label-ocean {
  background-color: #B3CAEC;
  opacity: 1;
}

.switch-label-day {
  background-color: white;
  opacity: 0.8;
}

/* End theme change css */

.gmd-iframe-dp {
  width: 99%;
  height: 166px;
  border-radius: 2%;
}

.gmd-social-container {
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
}

.gmd-fscreen {
  width: 95%;
  height: 450px;
}

.gmd-media-popular-section {
  border-top: 1px solid burlywood;
}

.gmd-media-popular-content {
  padding: 5px;
}

.gmd-video-frame {
  display: block;
  margin: 0 auto;
  /* Center-align the video */
  background-color: #fff;
  /* White background */
  padding: 30px;
  text-align: center;
}


/*
*
* From here the adjustment done for Tablets
*
*/
/* For screens equal to or larger than the medium (md) breakpoint */
@media (max-width: 991.98px) {

  .circle-container {
    width: 90%;
  }

  #gmd-cmp-name {
    font-size: 35px !important;
    margin-bottom: 16px;
  }

  .gmd-fh-font {
    font-size: 17px !important;
  }

  .gmd-sh-font {
    font-size: 11px !important;
  }
}


/*
*  From here the adjustment done for Phones
*  X-Small devices (portrait phones, less than 576px)
*/
@media (max-width: 575.98px) {
  #gmd-logo {
    width: 45px;
    margin-left: 0px;
  }

  .search-field-container {
    margin-bottom: 18px;
    width: 91%;
  }

  .gmd-header {
    height: 45px;
  }

  .circle-container {
    justify-content: space-between;
    align-items: normal;
  }

  .circle-container-theme {
    width: 96%;
    height: 39px;
    margin-bottom: 18px;
  }

  .search-field {
    padding: 5px;
  }

  .gmd-xs-container {
    margin-bottom: 7px;
    margin-top: 7px;
  }

  /*
  * Slider css start
  */

  /* Style for the curved boxes */
  .gmd-xs-subcategory-container {
    display: flex;
    overflow-x: scroll;
    /* Use 'scroll' instead of 'auto' to always show the scrollbar */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar in IE/Edge */
  }

  .gmd-xs-subcategory-box {
    flex: 0 0 auto;
    min-width: 46px;
    height: 32px;
    background-color: #f0f0f0;
    border-radius: 12px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
  }

  .gmd-xs-explore-box {
    flex: 0 0 auto;
    width: 57px;
    height: 32px;
    background-color: #f0f0f0;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    margin-left: 9px;
  }

  .gmd-side-line {
    border-left: 1px solid whitesmoke;
    margin-right: 13px;
  }

  .gmd-xs-category-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Webkit browsers (Chrome, Safari) */
  }

  /*Slider end*/

  /* Sidebar Start */
  .offcanvas-start {
    width: 70% !important;
    /* Adjust the width as needed */
  }

  .offcanvas-header {
    display: flex;
    align-items: center;
  }

  .offcanvas-title {
    flex-grow: 1;
    margin: 0;
    font-size: 18px;
    /* Adjust the font size as needed */
    color: #666;
    /* Gray text color */
  }

  .brand-logo {
    width: 30px;
    /* Adjust the image width as needed */
    height: auto;
    margin-right: 10px;
    /* Add space between image and text */
  }

  #gmd-cmp-name-sd {
    margin-left: 6px;
    font-family: Calisto MT, Bookman Old Style, Bookman, Goudy Old Style, Garamond, Hoefler Text, Bitstream Charter, Georgia, serif;
    font-weight: normal;
    font-size: 23px;
    margin-bottom: 1px;
  }

  #gmd-cmp-name-sd>span {
    color: #A6A6A6;
  }

  #gmd-cmp-name-sd>span1 {
    color: #CFCFCF;
  }

  #gmd-offcanvas {
    background-color: #B3CAEC;
  }

  .gmd-category {
    background-color: #B3CAEC !important;
  }

  .offcanvas-header {
    background-color: black;
    height: 45px;
  }

  button.close[data-bs-dismiss="offcanvas"] {
    color: white;
    /* Set the color to white or any other color you prefer */
  }

  /* Sidebar End */

  .gmd-content-background {
    padding-top: 77px;
  }

  .gmd-fscreen {
    width: 100%;
    height: 182px;
  }

  .gmd-content-border {
    border-left: initial;
    border-right: initial;
  }

}